4a38365dbda0756e74b150337ea07655c60e80b3,src/main/java/toughasnails/init/ModPotions.java,ModPotions,init,#,18

Before Change


    public static void init()
    {
        hypothermia = registerPotion("hypothermia", new PotionHypothermia(24).setPotionName("potion.hypothermia").setBeneficial());
        hyperthermia = registerPotion("hyperthermia", new PotionHyperthermia(25).setPotionName("potion.hyperthermia").setBeneficial());
        thirst = registerPotion("thirst", new PotionThirst(26).setPotionName("potion.thirst").setBeneficial());
    }
    

After Change


    public static void init()
    {
        hypothermia = registerPotion("hypothermia", new PotionHypothermia(24).setPotionName("potion.hypothermia"));
        hyperthermia = registerPotion("hyperthermia", new PotionHyperthermia(25).setPotionName("potion.hyperthermia"));
        thirst = registerPotion("thirst", new PotionThirst(26).setPotionName("potion.thirst"));
        cold_resistance = registerPotion("cold_resistance", new PotionColdResistance(27).setPotionName("potion.cold_resistance").setBeneficial());
        heat_resistance = registerPotion("heat_resistance", new PotionHeatResistance(28).setPotionName("potion.heat_resistance").setBeneficial());